Skip to content

fix(deps): update all dependencies - #485

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-dependencies
Open

fix(deps): update all dependencies#485
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jun 15, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@base-ui/react (source) ^1.4.1^1.6.0 age confidence dependencies minor
@clack/prompts (source) ^1.5.0^1.7.0 age confidence dependencies minor
@eslint/eslintrc ^3.3.5^3.3.6 age confidence devDependencies patch
@eslint/js (source) ^9.39.4^9.39.5 age confidence devDependencies patch
@next/env (source) ^16.2.6^16.2.12 age confidence devDependencies patch
@next/mdx (source) ^16.2.6^16.2.12 age confidence dependencies patch
@tailwindcss/postcss (source) ^4.3.0^4.3.3 age confidence devDependencies patch
@tailwindcss/typography ^0.5.19^0.5.20 age confidence devDependencies patch
@tanstack/react-virtual (source) ^3.13.26^3.14.8 age confidence dependencies minor
@types/mdx (source) ^2.0.13^2.0.14 age confidence devDependencies patch
@types/node (source) ^25.9.1^25.9.5 age confidence devDependencies patch
@types/react (source) ^19.2.15^19.2.17 age confidence devDependencies patch
@vercel/otel ^2.1.2^2.1.3 age confidence dependencies patch
@vercel/toolbar (source) ^0.2.6^0.2.7 age confidence dependencies patch
better-auth (source) ^1.6.15^1.6.25 age confidence dependencies patch
eslint (source) ^9.39.4^9.39.5 age confidence devDependencies patch
eslint-config-next (source) ^16.2.6^16.2.12 age confidence devDependencies patch
eslint-plugin-turbo (source) ^2.9.16^2.10.7 age confidence devDependencies minor
flags (source) ^4.0.6^4.2.3 age confidence dependencies minor
fumadocs-core 16.9.316.13.0 age confidence dependencies minor
fumadocs-mdx 15.0.1015.2.0 age confidence dependencies minor
fumadocs-openapi ^10.9.1^10.10.3 age confidence dependencies minor
fumadocs-twoslash ^3.2.0^3.3.0 age confidence dependencies minor
fumadocs-ui 16.9.316.13.0 age confidence dependencies minor
immer ^11.1.8^11.1.15 age confidence dependencies patch
lucide-react (source) ^1.17.0^1.27.0 age confidence dependencies minor
next (source) 16.2.616.2.12 age confidence dependencies patch
nock ^14.0.15^14.0.16 age confidence devDependencies patch
node (source) 26.x26.5.0 age confidence engines minor
node 24.16.024.18.0 age confidence uses-with minor
pg (source) ^8.21.0^8.22.0 age confidence dependencies minor
pnpm (source) 11.5.211.17.0 age confidence packageManager minor
postcss (source) ^8.5.15^8.5.23 age confidence devDependencies patch
prettier (source) ^3.8.3^3.9.6 age confidence devDependencies minor
prettier-plugin-tailwindcss ^0.8.0^0.8.1 age confidence devDependencies patch
react (source) ^19.2.6^19.2.8 age confidence dependencies patch
react-dom (source) ^19.2.6^19.2.8 age confidence dependencies patch
shiki (source) ^4.1.0^4.3.1 age confidence dependencies minor
swr (source) ^2.4.1^2.4.2 age confidence dependencies patch
tailwindcss (source) ^4.3.0^4.3.3 age confidence devDependencies patch
tsx (source) ^4.22.4^4.23.1 age confidence devDependencies minor
turbo (source) ^2.9.16^2.10.7 age confidence devDependencies minor
twoslash (source) ^0.3.8^0.3.9 age confidence dependencies patch
typescript-eslint (source) ^8.60.0^8.65.0 age confidence devDependencies minor

Release Notes

mui/base-ui (@​base-ui/react)

v1.6.0

Compare Source

Jun 18, 2026

General changes
Accordion
Alert Dialog
Autocomplete
Avatar
Checkbox
Checkbox Group
Collapsible
Combobox
Dialog
Drawer
Field
Fieldset
Form
Menu
Menubar
Meter
Navigation Menu
Number Field
OTP Field
  • 🚨 Breaking change: Unmark preview

    the namespace export is renamed OTPFieldPreviewOTPField and should be imported as: { OTPField } from '@​base-ui/react/otp-field' (#​5029) by @​atomiks
  • Avoid password manager bubbles after first input (#​4868) by @​atomiks
Popover
Preview Card
Radio Group
Scroll Area
Select
Slider
Switch
Tabs
Toast
Toggle
Toggle Group
Toolbar
Tooltip

All contributors of this release in alphabetical order: @​aarongarciah, @​atomiks, @​chuganzy, @​flaviendelangle, @​lyzno1, @​mattrothenberg, @​michaldudak, @​mj12albert, @​sernstberger, @​spokodev

v1.5.0

Compare Source

May 19, 2026

General changes
Alert Dialog
Autocomplete
Checkbox
Combobox
Dialog
Drawer
Field
Form
Menu
Navigation Menu
Number Field
OTP Field
Popover
Preview Card
Scroll Area
Select
Tabs
Toast
Tooltip

All contributors of this release in alphabetical order: @​aeterno-caspian, @​arturbien, @​atomiks, @​flaviendelangle, @​Janpot, @​lunaxislu, @​lyzno1, @​mattrothenberg, @​michaldudak, @​mj12albert, @​nami8824, @​sai6855, @​stefee, @​twillhorn

bombshell-dev/clack (@​clack/prompts)

v1.7.0

Compare Source

Minor Changes
  • #​574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.
Patch Changes

v1.6.0

Compare Source

Minor Changes
  • #​568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

    If you want the old behavior, provide a format() function:

    import { note } from '@​clack/prompts';
    +import { styleText } from 'node:util';
    
    note(
      'You can edit the file src/index.jsx',
      'Next steps.'
    +  { format: (text) => styleText('dim', text) }
    );
  • #​567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

Patch Changes

v1.5.1

Compare Source

Patch Changes
eslint/eslintrc (@​eslint/eslintrc)

v3.3.6

Compare Source

Bug Fixes
  • update js-yaml to 4.3.0 to address security vulnerability (#​235) (0c5de74)
eslint/eslint (@​eslint/js)

v9.39.5

Compare Source

Bug Fixes

Documentation

Chores

  • 458205f chore: update @eslint/eslintrc and @eslint/js for v9.39.5 (#​21077) (Francesco Trotta)
  • 202117b chore: package.json update for @​eslint/js release (Jenkins)
  • d9eb6ed test: disable warning for vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER (#​21074) (Francesco Trotta)
  • 7b431a7 chore: override re2 dependency for @metascraper/helpers (#​21068) (Milos Djermanovic)
  • daf7791 chore: pin fflate@​0.8.2 (#​20895) (Milos Djermanovic)
  • daee8ba ci: use pnpm in eslint-flat-config-utils type integration test (#​20829) (Milos Djermanovic)
  • 116d4be ci: unpin Node.js 25.x in CI (#​20619) (Copilot)
vercel/next.js (@​next/env)

v16.2.12

Compare Source

What's Changed

Full Changelog: vercel/next.js@v16.2.11...v16.2.12

v16.2.11

Compare Source

This release contains security fixes for the following advisories:

High:

Moderate:

v16.2.10

Compare Source

Contains no changes except publishing @next/swc-wasm-web which was accidentally not published since 16.2.4.

v16.2.9

Compare Source

Empty release to ensure next@latest points at a stable release. Next.js only allows publishing with Trusted Publishing enabled. In order to fix NPM dist-tags, we have to release a new version. Updating dist-tags is not possible with Trusted Publishing.

v16.2.8

[Compare Source](https://redirect.github.com/vercel/next.

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 04:59 AM, on day 1 and 15 of the month (* 0-4 1,15 * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel

vercel Bot commented Jun 15, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
searchneu Error Error Jul 27, 2026 6:00am
searchneu-docs Error Error Jul 27, 2026 6:00am

Request Review

@renovate

renovate Bot commented Jul 19, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
.                                        | [WARN] Unsupported engine: wanted: {"node":"26.5.0"} (current: {"node":"26.3.0","pnpm":"11.17.0"})
Scope: all 8 workspace projects
? Verifying lockfile against supply-chain policies (975 entries)...
Progress: resolved 1, reused 0, downloaded 0, added 0
Progress: resolved 26, reused 0, downloaded 0, added 0
Progress: resolved 40, reused 0, downloaded 0, added 0
Progress: resolved 49, reused 0, downloaded 0, added 0
Progress: resolved 53, reused 0, downloaded 0, added 0
Progress: resolved 56, reused 0, downloaded 0, added 0
Progress: resolved 57, reused 0, downloaded 0, added 0
Progress: resolved 59, reused 0, downloaded 0, added 0
Progress: resolved 60, reused 0, downloaded 0, added 0
Progress: resolved 61, reused 0, downloaded 1, added 0
[WARN] Request took 10288ms: https://registry.npmjs.org/@types%2Fnode
Progress: resolved 63, reused 0, downloaded 1, added 0
[WARN] Request took 11253ms: https://registry.npmjs.org/react
Progress: resolved 65, reused 0, downloaded 1, added 0
[WARN] Request took 11583ms: https://registry.npmjs.org/@next%2Fenv
[WARN] Request took 11946ms: https://registry.npmjs.org/react-dom
[WARN] Request took 10113ms: https://registry.npmjs.org/@next%2Feslint-plugin-next
[WARN] Request took 10765ms: https://registry.npmjs.org/eslint-config-next
[WARN] Request took 12273ms: https://registry.npmjs.org/@next%2Fmdx
Progress: resolved 66, reused 0, downloaded 1, added 0
[WARN] Request took 10768ms: https://registry.npmjs.org/@next%2Fmdx
[WARN] Request took 12669ms: https://registry.npmjs.org/tailwindcss
Progress: resolved 68, reused 0, downloaded 1, added 0
[WARN] Request took 14757ms: https://registry.npmjs.org/typescript
Progress: resolved 69, reused 0, downloaded 1, added 0
[WARN] Request took 10142ms: https://registry.npmjs.org/@typescript-eslint%2Fparser
[WARN] Request took 10473ms: https://registry.npmjs.org/@typescript-eslint%2Ftypescript-estree
Progress: resolved 71, reused 0, downloaded 1, added 0
[WARN] Request took 11441ms: https://registry.npmjs.org/@typescript-eslint%2Feslint-plugin
Progress: resolved 72, reused 0, downloaded 1, added 0
Progress: resolved 74, reused 0, downloaded 1, added 0
[WARN] Request took 18893ms: https://registry.npmjs.org/next
Progress: resolved 75, reused 0, downloaded 1, added 0
✓ Lockfile passes supply-chain policies (975 entries in 21.2s)
Progress: resolved 76, reused 0, downloaded 1, added 0
Progress: resolved 200, reused 0, downloaded 1, added 0
Progress: resolved 259, reused 0, downloaded 2, added 0
Progress: resolved 278, reused 0, downloaded 2, added 0
Progress: resolved 280, reused 0, downloaded 2, added 0
Progress: resolved 286, reused 0, downloaded 2, added 0
Progress: resolved 291, reused 0, downloaded 2, added 0
Progress: resolved 294, reused 0, downloaded 2, added 0
Progress: resolved 300, reused 0, downloaded 2, added 0
Progress: resolved 375, reused 0, downloaded 2, added 0
Progress: resolved 409, reused 0, downloaded 2, added 0
Progress: resolved 485, reused 0, downloaded 2, added 0
Progress: resolved 701, reused 0, downloaded 2, added 0
Progress: resolved 705, reused 0, downloaded 2, added 0
Progress: resolved 714, reused 0, downloaded 2, added 0
Progress: resolved 717, reused 0, downloaded 2, added 0
Progress: resolved 737, reused 0, downloaded 2, added 0
Progress: resolved 921, reused 0, downloaded 2, added 0
Progress: resolved 1074, reused 0, downloaded 2, added 0
Progress: resolved 1077, reused 0, downloaded 2, added 0
[ERR_PNPM_NO_MATURE_MATCHING_VERSION] 38 versions do not meet the minimumReleaseAge constraint:
  @better-auth/core@1.6.25 was published at 2026-07-23T15:48:18.184Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @better-auth/drizzle-adapter@1.6.25 was published at 2026-07-23T15:48:16.157Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @better-auth/kysely-adapter@1.6.25 was published at 2026-07-23T15:47:46.332Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @better-auth/memory-adapter@1.6.25 was published at 2026-07-23T15:47:50.508Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @better-auth/mongo-adapter@1.6.25 was published at 2026-07-23T15:47:54.450Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @better-auth/prisma-adapter@1.6.25 was published at 2026-07-23T15:48:02.904Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @better-auth/telemetry@1.6.25 was published at 2026-07-23T15:49:23.323Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/env@16.2.12 was published at 2026-07-25T20:44:31.996Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/env@16.2.12 was published at 2026-07-25T20:44:31.996Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/eslint-plugin-next@16.2.12 was published at 2026-07-25T20:44:15.537Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/mdx@16.2.12 was published at 2026-07-25T20:44:34.328Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/swc-darwin-arm64@16.2.12 was published at 2026-07-25T20:43:10.156Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/swc-darwin-x64@16.2.12 was published at 2026-07-25T20:43:40.080Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/swc-linux-arm64-gnu@16.2.12 was published at 2026-07-25T20:43:25.405Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/swc-linux-arm64-musl@16.2.12 was published at 2026-07-25T20:43:24.780Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/swc-linux-x64-gnu@16.2.12 was published at 2026-07-25T20:43:10.778Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/swc-linux-x64-musl@16.2.12 was published at 2026-07-25T20:43:40.393Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/swc-win32-arm64-msvc@16.2.12 was published at 2026-07-25T20:43:53.763Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @next/swc-win32-x64-msvc@16.2.12 was published at 2026-07-25T20:43:57.556Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @turbo/darwin-64@2.10.7 was published at 2026-07-25T15:21:20.882Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @turbo/darwin-arm64@2.10.7 was published at 2026-07-25T15:21:29.130Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @turbo/linux-64@2.10.7 was published at 2026-07-25T15:21:39.886Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @turbo/linux-arm64@2.10.7 was published at 2026-07-25T15:21:45.975Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @turbo/windows-64@2.10.7 was published at 2026-07-25T15:21:49.636Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  @turbo/windows-arm64@2.10.7 was published at 2026-07-25T15:21:57.141Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  better-auth@1.6.25 was published at 2026-07-23T15:48:09.957Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  eslint-config-next@16.2.12 was published at 2026-07-25T20:45:14.519Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  eslint-plugin-turbo@2.10.7 was published at 2026-07-25T15:22:36.633Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  flags@4.2.3 was published at 2026-07-24T15:08:11.168Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  fumadocs-core@16.13.0 was published at 2026-07-27T04:08:06.515Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  fumadocs-ui@16.13.0 was published at 2026-07-27T04:08:22.828Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  lucide-react@1.27.0 was published at 2026-07-25T21:03:02.144Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  lucide-react@1.27.0 was published at 2026-07-25T21:03:02.144Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  next@16.2.12 was published at 2026-07-25T20:45:53.940Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  next@16.2.12 was published at 2026-07-25T20:45:53.940Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  postcss@8.5.23 was published at 2026-07-24T17:05:13.876Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  turbo@2.10.7 was published at 2026-07-25T15:22:07.536Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)
  turbo@2.10.7 was published at 2026-07-25T15:22:07.536Z, within the minimumReleaseAge cutoff (2026-07-23T05:59:03.901Z)

@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 8c56c64 to 90bd05d Compare July 19, 2026 09:37
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 90bd05d to fe84a7a Compare July 20, 2026 03:44
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from fe84a7a to 39f5448 Compare July 20, 2026 20:10
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 39f5448 to 7d97822 Compare July 21, 2026 10:06
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 7d97822 to 77553e1 Compare July 21, 2026 16:53
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 77553e1 to e19b06e Compare July 22, 2026 11:36
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 701bf75 to fd56894 Compare July 22, 2026 23:29
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch 2 times, most recently from a891db1 to 8879289 Compare July 23, 2026 15:06
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 8879289 to 89cf74a Compare July 23, 2026 18:40
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 89cf74a to bfc662f Compare July 24, 2026 15:17
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from bfc662f to 9f2fb50 Compare July 24, 2026 21:36
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 9f2fb50 to fcaaef3 Compare July 25, 2026 16:27
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from fcaaef3 to 7616c62 Compare July 25, 2026 20:49
@renovate
renovate Bot force-pushed the renovate/all-dependencies branch from 7616c62 to b99477a Compare July 26, 2026 05:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants